home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / fkeymenu.zip / DEMO.BAT < prev    next >
DOS Batch File  |  1991-04-04  |  1KB  |  78 lines

  1. @Echo Off
  2. :Again
  3. Cls
  4. Type DEMO.DAT
  5. GETFKEY
  6. If Errorlevel 69 Goto Again
  7. If Errorlevel 68 Goto F10
  8. If Errorlevel 67 Goto F9
  9. If Errorlevel 66 Goto F8
  10. If Errorlevel 65 Goto F7
  11. If Errorlevel 64 Goto F6
  12. If Errorlevel 63 Goto F5
  13. If Errorlevel 62 Goto F4
  14. If Errorlevel 61 Goto F3
  15. If Errorlevel 60 Goto F2
  16. If Errorlevel 59 Goto F1
  17. If Errorlevel 58 Goto Again
  18. :F1
  19.   Cls
  20.   Echo This is F1
  21.   Echo You have initiated a command to FORMAT
  22.   Pause
  23.   Goto Again
  24. :F2
  25.   Cls
  26.   Echo This is F2
  27.   Echo You have initiated a command to FORMAT
  28.   Pause
  29.   Goto Again
  30. :F3
  31.   Cls
  32.   Echo This is F3
  33.   Echo You have initiated a command to FORMAT
  34.   Pause
  35.   Goto Again
  36. :F4
  37.   Cls
  38.   Echo This is F4
  39.   Echo You have initiated a command to FORMAT
  40.   Pause
  41.   Goto Again
  42. :F5
  43.   Cls
  44.   Echo This is F5
  45.   Echo You have initiated a command to FORMAT
  46.   Pause
  47.   Goto Again
  48. :F6
  49.   Cls
  50.   Echo This is F6
  51.   Echo You have initiated a command to FORMAT
  52.   Pause
  53.   Goto Again
  54. :F7
  55.   Cls
  56.   Echo This is F7
  57.   Echo You have initiated a command to DISKCOPY
  58.   Pause
  59.   Goto Again
  60. :F8
  61.   Cls
  62.   Echo This is F8
  63.   Echo You have initiated a command to DISKCOPY
  64.   Pause
  65.   Goto Again
  66. :F9
  67.   Cls
  68.   Echo This is F9
  69.   Echo You have become hungry doing this and have
  70.   Echo initiated a command for Pizza!
  71.   Pause
  72.   Goto Again
  73. :F10
  74.   Cls
  75.   Echo THIS IS F10 and this is the END!!!
  76.   Pause
  77. :END
  78.